.subvention-info {
    border-radius: 4px;
    background-color: #007BFF30;
    min-height: 30px;
    width: auto;
}

.subvention-info-message-block{
    color: #007BFF;
    font-size: 13px;
    padding: 15px 10px;
    display: flex;
    column-gap: 8px;
    margin-bottom: 10px;
}
.subvention-info-message{
    display: flex;
    justify-content: center;
    flex: 1;
}
.subvention-info-message span{
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.subvention-info-message-block img{
    height: fit-content;
}

.subvention-info .infos-general{
    color: white;
    text-align: left;
    line-height: 1.5;
    opacity: 0.7;
    font-size: 13px;
}

.subvention-recap {
    display: flex;
    justify-content: space-between;
    flex: 1;
    margin-left: 130px;
    color: #007bFF;
    font-size: 13px;
    padding: 5px;
    background: #007BFF10;
    border: 1px solid;
}

.tooltip-custom {
    position: relative;
}
.tooltip-custom .msg{
    font-size: 20px;
    font-family: unset;
}
  
.tooltip-custom .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 360px;
    background-color: #000000DD;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    z-index: 180;
    opacity: 0;
    transition: opacity 0.3s;
    top: 0;
    left: 50%;
    transform: translate(-50%,-105%);
    text-align: left;
}

.tooltip-custom .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000000DD transparent transparent transparent;
}

.tooltip-custom:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 576px) { 
    .subvention-info .infos-general{
        font-size: 12px
    }
    .tooltip-custom .msg{
        font-size: 16px;
    }
    .tooltip-custom .tooltiptext{
        width: 330px;
    }
}